module Hydrocraft
{
    imports
    {
        Base

    }

/************************ITEMS************************/

item HCPlastic
    {
        Weight    		=    	0.1,
        Type    		=    	Normal,
        DisplayName    		=    	Plastic,
        Icon    		=    	HCPlastic,
		DisplayCategory		=   Craft,
    }

item HCBioplastic
	{
	Weight			= 0.1,
        Type    		= Normal,
	DisplayName		= Bioplastic,
	Icon			= HCBioplastic,
		DisplayCategory		=   Craft,
	}

item HCSelfmadeplasticcase
	{
	Weight			=	0.3,
	Type			=	Normal,
	DisplayName		=	Homemade Plastic Case,
	Icon			=	HCSelfmadeplasticcase,
		DisplayCategory		=   Craft,
	}

/************************RECIPES************************/	

recipe Make Bioplastic
    	{
        	HCBiodieselcan,
		HCResin=4,
		keep HCSafetyglasses,
        	keep HCLatexgloves/HCRubberglove,
        	keep HCLab2,
        	CanBeDoneFromFloor:true,
        	Result:HCBioplastic=4,
                NeedToBeLearn:true,
        	Time:250,
    		Category:Chemistry,
        	OnCreate:recipe_hcbiodieselcan,
    		OnGiveXP:HCCooking_OnGiveXP,
    	}

recipe Recycle Plastic Can
    {
    	HCPlasticcanempty,
		keep HCBoxcutter/[Recipe.GetItemTypes.DullKnife]/[Recipe.GetItemTypes.SharpKnife]/[Recipe.GetItemTypes.Scissors],
    	Result:HCPlastic=5,
    	Time:50,
    	Category:Engineer,
    	OnGiveXP:Recipe.OnGiveXP.None,
    }

recipe Make Plastic Case
    {
    	Glue/HCGluejar,
		keep HCBoxcutter/[Recipe.GetItemTypes.DullKnife]/[Recipe.GetItemTypes.SharpKnife]/[Recipe.GetItemTypes.Scissors],
        HCPlastic=6,
    	Result:HCSelfmadeplasticcase,
    	Time:50,
    	Category:Engineer,
    	OnGiveXP:Recipe.OnGiveXP.None,
    }


}